home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / pimagesaveforsep.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-04  |  719 b   |  38 lines

  1. /*
  2.  *--- PImageSaveForSep.h ----------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  *
  5.  * Description:
  6.  *-------------------------------------------------------------------------
  7.  */
  8. #ifndef __PImageSaveForSep__
  9. #define __PImageSaveForSep__
  10.  
  11. #include "PMTypes.h"
  12.  
  13. class PImageSaveForSep
  14. {
  15.  
  16. public:
  17.  
  18.     PImageSaveForSep(
  19.                 const char * sFileName,
  20.                 PMBool    bLinkOption,
  21.                 short    nPreview,
  22.                 short    nFileFormat,
  23.                 PMBool    bCropped,
  24.                 PMBool    bProfile,
  25.                 short    nCompression,
  26.                 short    nDataFormat,
  27.                 short    nCompliance
  28.                 );
  29.  
  30. private:
  31.  
  32.     PImageSaveForSep();
  33. };
  34.  
  35. #endif
  36.  
  37. // end of PImageSaveForSep.h
  38.